avformat/segment: Various segment muxer improvements#96
Open
softworkz wants to merge 6 commits intoffstaging:masterfrom
Open
avformat/segment: Various segment muxer improvements#96softworkz wants to merge 6 commits intoffstaging:masterfrom
softworkz wants to merge 6 commits intoffstaging:masterfrom
Conversation
11124d5 to
88a8dc7
Compare
Collaborator
Author
|
/submit |
|
Submitted as [email protected] To fetch this version into To fetch this version to local tag |
Allows to write segments as temp files (.tmp) which are renamed on completion. Signed-off-by: softworkz <[email protected]>
Example use case: Existing segments 0-30 and 70-99, 31-69 need to be created. This option allows to stop precisely after 69. Otherwise it would start overwriting segment 70 before stopping via 'q' or break signal. Signed-off-by: softworkz <[email protected]>
Use case is to keep early content out of the first segment when not starting from zero. Signed-off-by: softworkz <[email protected]>
Signed-off-by: softworkz <[email protected]>
Signed-off-by: softworkz <[email protected]>
Signed-off-by: softworkz <[email protected]>
88a8dc7 to
cb32675
Compare
Collaborator
Author
|
/submit |
|
Submitted as [email protected] To fetch this version into To fetch this version to local tag |
| @@ -121,6 +121,9 @@ typedef struct SegmentContext { | |||
| int break_non_keyframes; | |||
There was a problem hiding this comment.
On the FFmpeg mailing list, Michael Niedermayer wrote (reply to this):
--===============8122640100284245730==
Content-Type: multipart/signed; micalg=pgp-sha512;
protocol="application/pgp-signature"; boundary="8AfFfcQwKZvQE1LI"
Content-Disposition: inline
--8AfFfcQwKZvQE1LI
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
On Sat, Jun 14, 2025 at 12:59:10AM +0000, softworkz wrote:
> From: softworkz <[email protected]>
>=20
> Signed-off-by: softworkz <[email protected]>
> ---
> libavformat/segment.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
should be ok
thx
[...]
--=20
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Frequently ignored answer#1 FFmpeg bugs should be sent to our bugtracker. U=
ser
questions about the command line tools should be sent to the ffmpeg-user ML.
And questions about how to use libav* should be sent to the libav-user ML.
--8AfFfcQwKZvQE1LI
Content-Type: application/pgp-signature; name="signature.asc"
-----BEGIN PGP SIGNATURE-----
iF0EABEKAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCaE3eQAAKCRBhHseHBAsP
q266AJ9SI6yx8cvPZxKopJww1UchP4vodwCfYzQTYFxFp6OFaHU9o8q8Oh9eDtQ=
=LqfM
-----END PGP SIGNATURE-----
--8AfFfcQwKZvQE1LI--
--===============8122640100284245730==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".
--===============8122640100284245730==--
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Includes
Allows to write segments as temp files (.tmp) which are renamed on completion
Stop after n segments have been written
Versions
V2
(as per review by Marton - thanks!)
.